home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 1890
- ClientLeft = 1410
- ClientTop = 1560
- ClientWidth = 6825
- ControlBox = 0 'False
- Height = 2295
- Icon = "About.frx":0000
- Left = 1350
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1890
- ScaleWidth = 6825
- ShowInTaskbar = 0 'False
- Top = 1215
- Width = 6945
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 315
- Index = 2
- Left = 6060
- TabIndex = 1
- Top = 855
- Width = 675
- End
- Begin VB.PictureBox picDisplay
- Height = 510
- Left = 60
- ScaleHeight = 30
- ScaleMode = 0 'User
- ScaleWidth = 445
- TabIndex = 0
- Top = 1320
- Width = 6735
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Mike Stanley"
- Height = 195
- Left = 3000
- TabIndex = 4
- Top = 675
- Width = 915
- End
- Begin VB.Label Label8
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "E-Mail: 74632.2227@compuserve.com"
- Height = 195
- Left = 1980
- TabIndex = 3
- Top = 930
- Width = 2805
- End
- Begin VB.Image Image1
- BorderStyle = 1 'Fixed Single
- Height = 540
- Left = 60
- Picture = "About.frx":030A
- Top = 135
- Width = 540
- End
- Begin VB.Label lblTitle
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "VBMax Electronic Message"
- BeginProperty Font
- name = "Times New Roman"
- charset = 0
- weight = 700
- size = 24
- underline = 0 'False
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 540
- Left = 900
- TabIndex = 2
- Top = 120
- Width = 5460
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Dim moEDisp As New CElectronicDisplay
- Private Sub Form_Load()
- Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
- With moEDisp
- Set .Container = picDisplay
- .BackColor = &H800000
- .ForeColor = vbYellow
- .Caption = "VBMax Electronic Message Display" & _
- " ~~~ Visual Basic to the Max" & _
- " ~~~ Less filling-works great" & _
- " ~~~ No royalties" & _
- " ~~~ Only $10 and you get the source code too!" & _
- " ~~~ See how it works" & _
- " ~~~ Tweak it any way you want" & _
- " ~~~ E-Mail: Mike Stanley 74632.2227@compuserve.com" & _
- " "
- End With
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- moEDisp.Shutdown
- Set moEDisp = Nothing
- Set frmAbout = Nothing
- End Sub
- Private Sub cmdOK_Click(Index As Integer)
- Unload Me
- End Sub
-